var github.com/google/uuid.clockSeq

10 uses

	github.com/google/uuid (current package)
		time.go#L28: 	clockSeq uint16 // clock sequence for this run
		time.go#L55: 	if clockSeq == 0 {
		time.go#L63: 		clockSeq = ((clockSeq + 1) & 0x3fff) | 0x8000
		time.go#L66: 	return Time(now), clockSeq, nil
		time.go#L83: 	if clockSeq == 0 {
		time.go#L86: 	return int(clockSeq & 0x3fff)
		time.go#L103: 	oldSeq := clockSeq
		time.go#L104: 	clockSeq = uint16(seq&0x3fff) | 0x8000 // Set our variant
		time.go#L105: 	if oldSeq != clockSeq {